home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / wndwc20.zip / EX6.C < prev    next >
Text File  |  1989-03-06  |  655b  |  22 lines

  1. /*     EXAMPLE 6:  SEETHRUMODE window
  2.      ----------------------------------------------------------------------*/
  3.      #include <conio.h>
  4.      #include <dos.h>
  5.      #include "wndwc20.h"
  6.  
  7.      void main()
  8.      {
  9.          qinit();
  10.          initwindow( LIGHTGRAY_BG, 1, 0 );
  11.          wwritec( 12, "My message" );
  12.          setwindowmodes( SEETHRUMODE );
  13.          delay( 1000 );
  14.          makewindow( 10, 26, 5, 30, WHITE+BLUE_BG, CYAN+BLUE_BG,
  15.                      SINGLE_BORDER, AWINDOW );
  16.          titlewindow( TOP, LEFT, YELLOW+BLUE_BG, " Captured Text " );
  17.          delay( 2500 );
  18.          removewindow();
  19.          getch();
  20.      }
  21.  
  22.